Skip to content

Instantly share code, notes, and snippets.

@VinDuv
VinDuv / disable_sprr.patch
Created June 4, 2021 20:20
m1n1 on QEMU
diff --git a/src/gxf.c b/src/gxf.c
index f306369..267d7a0 100644
--- a/src/gxf.c
+++ b/src/gxf.c
@@ -19,6 +19,8 @@ void *gl2_stack_base = &gl2_stack[GL_STACK_SIZE];
bool in_gl12(void)
{
+ return false;
+
@hyamamoto
hyamamoto / Comparing.java
Last active August 12, 2026 23:33
Generic null safe " Comparable.compareTo()" implementations.
/**
* Generic null safe {@link Comparable#compareTo(Object)} implementations.
*
* @author Hiroshi Yamamoto
* @see {@link Comparable}
*/
public final class Comparing {
private Comparing() {}
#EXTM3U
#EXTINF:-1,INEWS+ https://live.rctiplus.id/rctiplus/inews_720p.m3u8
https://live.rctiplus.id/rctiplus/inews_720p.m3u8
#EXTINF:-1,GLOBAL TV+ https://live.rctiplus.id/rctiplus/gtv_720p.m3u8
https://live.rctiplus.id/rctiplus/gtv_720p.m3u8
#EXTINF:-1,SCTV HD http://id1.indostreamingtv.com/live/sctv/index.m3u8
http://id1.indostreamingtv.com/live/sctv/index.m3u8
#EXTINF:-1,METRO TV HD http://edge.metrotvnews.com:1935/live-edge/smil:metro.smil/chunklist_w2006790992_b1492000_sleng.m3u8
http://edge.metrotvnews.com:1935/live-edge/smil:metro.smil/chunklist_w2006790992_b1492000_sleng.m3u8
#EXTINF:-1,NET TV http://45.126.83.51/qwr9ew/s/s08/01.m3u8
@Barry1
Barry1 / AdobeCS2Free.md
Last active August 12, 2026 23:30
Adobe CreativeSuite 2 for free
@arenagroove
arenagroove / prompt-shorthand-styles.md
Last active August 12, 2026 23:26
A comprehensive list of community-developed ChatGPT prompt shorthand styles. These smart instructions help guide the AI to respond in specific formats, tones, or structures—saving time and boosting creativity.

🧠 Prompt Shorthand Styles

@smontlouis
smontlouis / index.html
Created August 12, 2026 09:54
please don't sue me
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 64 64%22><circle cx=%2232%22 cy=%2232%22 r=%2230%22 fill=%22%235b7fe5%22/><circle cx=%2224%22 cy=%2228%22 r=%225%22/><circle cx=%2240%22 cy=%2228%22 r=%225%22/></svg>"
/>

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

name vibecoder-review
description Practical OWASP-focused security review for fast-moving codebases built with AI assistance - catches common patterns where speed trumps security (exposed secrets, auth bypasses, missing access controls, injection vulnerabilities)

Vibecoder Security Review

Overview

Target audience: Fast-moving codebases built by developers using AI assistance, rapid prototyping tools, and modern frameworks. These projects prioritize speed and iteration, often skipping security fundamentals.

@lhes23
lhes23 / userdata.sh
Last active August 12, 2026 23:09
EC2 - User Data - Docker and Git installation on Ubuntu
#!/bin/bash
set -e
apt-get update -y
apt-get install -y \
ca-certificates \
curl \
gnupg \
git